home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Information / WebSites / AmigaNorthThames / cgi-bin / vars.pl < prev   
Perl Script  |  2001-04-21  |  1KB  |  50 lines

  1. #!/usr/bin/perl
  2.  
  3.  
  4. # Administrator Username/Password
  5. $adminusername = 'admin';
  6. $adminpassword = 'bug';
  7. $adminemailaddress = 'Webmaster@amiganorththames.co.uk';
  8. $adminrealname = 'Mike Woods';
  9.  
  10. # Site Variables
  11. $sitename = "";
  12.  
  13. # Output variables
  14.  
  15. # Output type
  16. # This defines how the output will look (ie. the format)
  17. # This variable does NOT define the colours, simply the layout
  18. # Placed in $outputtype='detailed'; mode the script outputs the info
  19. # as a table with all details about the poster including, their nickname
  20. # which is hyperlinked to the email address, the date of the post, name of
  21. # the post and finally the post contents.
  22.  
  23. # Any other value for $outputtype='plain' (set to $outputtype='plain'; for clarities sake)
  24. # will result in the other format available which simply prints the date followed by a <br> and
  25. # the actual post contents.
  26.  
  27. $outputtype='detailed';
  28.  
  29. ####
  30. # Colour Settings
  31.  
  32. # Hex value of the title text colour
  33. $titletextcolour='#000000';
  34. # Hex value of the message text colour
  35. $messagetextcolour='#000000';
  36. # HTML value of the alignment of each message, can be set to either
  37. # center, left or right.
  38. $messagealignment='center';
  39.  
  40. # Defines the thickness in pixels of the table borders.
  41. $border='1';
  42.  
  43.  
  44.  
  45.  
  46. # End of CONFIG file.
  47.  
  48. 1;
  49.  
  50.